Package pl. wendigo. chrome. api. debugger
Contains DevTools Protocol Debugger domain implementation accessible via DebuggerDomain class.
Types
BreakLocation
Link copied to clipboard
data class BreakLocation(scriptId: ScriptId, lineNumber: Int, columnNumber: Int?, type: String?)
Content copied to clipboard
BreakpointId
Link copied to clipboard
BreakpointResolvedEvent
Link copied to clipboard
data class BreakpointResolvedEvent(breakpointId: BreakpointId, location: Location) : Event
Content copied to clipboard
CallFrame
Link copied to clipboard
data class CallFrame(callFrameId: CallFrameId, functionName: String, functionLocation: Location?, location: Location, url: String, scopeChain: List<Scope>, _this: RemoteObject, returnValue: RemoteObject?)
Content copied to clipboard
CallFrameId
Link copied to clipboard
ContinueToLocationRequest
Link copied to clipboard
data class ContinueToLocationRequest(location: Location, targetCallFrames: String?)
Content copied to clipboard
Represents request frame that can be used with Debugger#continueToLocation operation call.
DebuggerDomain
Link copied to clipboard
DebugSymbols
Link copied to clipboard
EnableRequest
Link copied to clipboard
EnableResponse
Link copied to clipboard
EvaluateOnCallFrameRequest
Link copied to clipboard
data class EvaluateOnCallFrameRequest(callFrameId: CallFrameId, expression: String, objectGroup: String?, includeCommandLineAPI: Boolean?, silent: Boolean?, returnByValue: Boolean?, generatePreview: Boolean?, throwOnSideEffect: Boolean?, timeout: TimeDelta?)
Content copied to clipboard
Represents request frame that can be used with Debugger#evaluateOnCallFrame operation call.
EvaluateOnCallFrameResponse
Link copied to clipboard
data class EvaluateOnCallFrameResponse(result: RemoteObject, exceptionDetails: ExceptionDetails?)
Content copied to clipboard
Represents response frame that is returned from Debugger#evaluateOnCallFrame operation call.
GetPossibleBreakpointsRequest
Link copied to clipboard
data class GetPossibleBreakpointsRequest(start: Location, end: Location?, restrictToFunction: Boolean?)
Content copied to clipboard
Represents request frame that can be used with Debugger#getPossibleBreakpoints operation call.
GetPossibleBreakpointsResponse
Link copied to clipboard
data class GetPossibleBreakpointsResponse(locations: List<BreakLocation>)
Content copied to clipboard
Represents response frame that is returned from Debugger#getPossibleBreakpoints operation call.
GetScriptSourceRequest
Link copied to clipboard
GetScriptSourceResponse
Link copied to clipboard
data class GetScriptSourceResponse(scriptSource: String, bytecode: String?)
Content copied to clipboard
Represents response frame that is returned from Debugger#getScriptSource operation call.
GetStackTraceRequest
Link copied to clipboard
GetStackTraceResponse
Link copied to clipboard
GetWasmBytecodeRequest
Link copied to clipboard
GetWasmBytecodeResponse
Link copied to clipboard
LocationRange
Link copied to clipboard
data class LocationRange(scriptId: ScriptId, start: ScriptPosition, end: ScriptPosition)
Content copied to clipboard
PausedEvent
Link copied to clipboard
data class PausedEvent(callFrames: List<CallFrame>, reason: String, data: JsonElement?, hitBreakpoints: List<String>?, asyncStackTrace: StackTrace?, asyncStackTraceId: StackTraceId?, asyncCallStackTraceId: StackTraceId?) : Event
Content copied to clipboard
PauseOnAsyncCallRequest
Link copied to clipboard
RemoveBreakpointRequest
Link copied to clipboard
RestartFrameRequest
Link copied to clipboard
RestartFrameResponse
Link copied to clipboard
data class RestartFrameResponse(callFrames: List<CallFrame>, asyncStackTrace: StackTrace?, asyncStackTraceId: StackTraceId?)
Content copied to clipboard
Represents response frame that is returned from Debugger#restartFrame operation call.
ResumeRequest
Link copied to clipboard
ScriptFailedToParseEvent
Link copied to clipboard
data class ScriptFailedToParseEvent(scriptId: ScriptId, url: String, startLine: Int, startColumn: Int, endLine: Int, endColumn: Int, executionContextId: ExecutionContextId, hash: String, executionContextAuxData: JsonElement?, sourceMapURL: String?, hasSourceURL: Boolean?, isModule: Boolean?, length: Int?, stackTrace: StackTrace?, codeOffset: Int?, scriptLanguage: ScriptLanguage?, embedderName: String?) : Event
Content copied to clipboard
ScriptLanguage
Link copied to clipboard
ScriptParsedEvent
Link copied to clipboard
data class ScriptParsedEvent(scriptId: ScriptId, url: String, startLine: Int, startColumn: Int, endLine: Int, endColumn: Int, executionContextId: ExecutionContextId, hash: String, executionContextAuxData: JsonElement?, isLiveEdit: Boolean?, sourceMapURL: String?, hasSourceURL: Boolean?, isModule: Boolean?, length: Int?, stackTrace: StackTrace?, codeOffset: Int?, scriptLanguage: ScriptLanguage?, debugSymbols: DebugSymbols?, embedderName: String?) : Event
Content copied to clipboard
ScriptPosition
Link copied to clipboard
SearchInContentRequest
Link copied to clipboard
data class SearchInContentRequest(scriptId: ScriptId, query: String, caseSensitive: Boolean?, isRegex: Boolean?)
Content copied to clipboard
Represents request frame that can be used with Debugger#searchInContent operation call.
SearchInContentResponse
Link copied to clipboard
SearchMatch
Link copied to clipboard
SetAsyncCallStackDepthRequest
Link copied to clipboard
SetBlackboxedRangesRequest
Link copied to clipboard
data class SetBlackboxedRangesRequest(scriptId: ScriptId, positions: List<ScriptPosition>)
Content copied to clipboard
Represents request frame that can be used with Debugger#setBlackboxedRanges operation call.
SetBlackboxPatternsRequest
Link copied to clipboard
SetBreakpointByUrlRequest
Link copied to clipboard
SetBreakpointByUrlResponse
Link copied to clipboard
data class SetBreakpointByUrlResponse(breakpointId: BreakpointId, locations: List<Location>)
Content copied to clipboard
Represents response frame that is returned from Debugger#setBreakpointByUrl operation call.
SetBreakpointOnFunctionCallRequest
Link copied to clipboard
data class SetBreakpointOnFunctionCallRequest(objectId: RemoteObjectId, condition: String?)
Content copied to clipboard
Represents request frame that can be used with Debugger#setBreakpointOnFunctionCall operation call.
SetBreakpointOnFunctionCallResponse
Link copied to clipboard
data class SetBreakpointOnFunctionCallResponse(breakpointId: BreakpointId)
Content copied to clipboard
Represents response frame that is returned from Debugger#setBreakpointOnFunctionCall operation call.
SetBreakpointRequest
Link copied to clipboard
SetBreakpointResponse
Link copied to clipboard
data class SetBreakpointResponse(breakpointId: BreakpointId, actualLocation: Location)
Content copied to clipboard
Represents response frame that is returned from Debugger#setBreakpoint operation call.
SetBreakpointsActiveRequest
Link copied to clipboard
SetInstrumentationBreakpointRequest
Link copied to clipboard
Represents request frame that can be used with Debugger#setInstrumentationBreakpoint operation call.
SetInstrumentationBreakpointResponse
Link copied to clipboard
data class SetInstrumentationBreakpointResponse(breakpointId: BreakpointId)
Content copied to clipboard
Represents response frame that is returned from Debugger#setInstrumentationBreakpoint operation call.
SetPauseOnExceptionsRequest
Link copied to clipboard
SetReturnValueRequest
Link copied to clipboard
SetScriptSourceRequest
Link copied to clipboard
data class SetScriptSourceRequest(scriptId: ScriptId, scriptSource: String, dryRun: Boolean?)
Content copied to clipboard
Represents request frame that can be used with Debugger#setScriptSource operation call.
SetScriptSourceResponse
Link copied to clipboard
data class SetScriptSourceResponse(callFrames: List<CallFrame>?, stackChanged: Boolean?, asyncStackTrace: StackTrace?, asyncStackTraceId: StackTraceId?, exceptionDetails: ExceptionDetails?)
Content copied to clipboard
Represents response frame that is returned from Debugger#setScriptSource operation call.
SetSkipAllPausesRequest
Link copied to clipboard
SetVariableValueRequest
Link copied to clipboard
data class SetVariableValueRequest(scopeNumber: Int, variableName: String, newValue: CallArgument, callFrameId: CallFrameId)
Content copied to clipboard
Represents request frame that can be used with Debugger#setVariableValue operation call.
StepIntoRequest
Link copied to clipboard
data class StepIntoRequest(breakOnAsyncCall: Boolean?, skipList: List<LocationRange>?)
Content copied to clipboard
Represents request frame that can be used with Debugger#stepInto operation call.
StepOverRequest
Link copied to clipboard